I am new to React js. I want to implement "Content-Based Recommender" package using npm. After I downloaded it I could not import it. In documentation it said
const ContentBasedRecommender = require('content-based-recommender')
but it is for Node js i think. Can someone help me? Thanks
I really don't know that package, but all imports in React have these syntaxes
import ContentBasedRecommender from 'content-based-recommender'
or
import { ContentBasedRecommender } from 'content-based-recommender'